home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / e_to_l / fbuilder / delphi / demos / fbdemo.dpr < prev    next >
Encoding:
Text File  |  1996-09-15  |  472 b   |  21 lines

  1. {*                    *}
  2. {* FormulaBuilder 1.0 *}
  3. {* Basic Demo         *}
  4.  
  5. {* A program which demonstrates the range of expression types *}
  6. {* possible with FormulaBuilder                               *}
  7.  
  8. program Fbdemo;
  9. uses
  10.   Forms,
  11.   Testfrm in 'TESTFRM.PAS' {Form1},
  12.   Funcdlg in 'FUNCDLG.PAS' {FunctionDlg};
  13.  
  14. {$R *.RES}
  15.  
  16. begin
  17.   Application.CreateForm(TForm1, Form1);
  18.   Application.CreateForm(TFunctionDlg, FunctionDlg);
  19.   Application.Run;
  20. end.
  21.